home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Robotics & Artificial Int…3 (Professional Edition)
/
Robotics & Artificial Intelligence Tools 2003 (Professional Edition).iso
/
robot software
/
webots-kros-1.0.1_setup.exe
/
{app}
/
kteam
/
include
/
assert.h
< prev
next >
Wrap
C/C++ Source or Header
|
1999-12-23
|
485b
|
30 lines
/*
assert.h
*/
#ifdef __cplusplus
extern "C" {
#endif
#include "_ansi.h"
#undef assert
#ifdef NDEBUG /* required by ANSI standard */
#define assert(p) ((void)0)
#else
#ifdef __STDC__
#define assert(e) ((e) ? (void)0 : __assert(__FILE__, __LINE__, #e))
#else /* PCC */
#define assert(e) ((e) ? (void)0 : __assert(__FILE__, __LINE__, "e"))
#endif
#endif /* NDEBUG */
void _EXFUN(__assert,(const char *, int, const char *));
#ifdef __cplusplus
}
#endif